From: Ævar Arnfjörð Bjarmason Date: Sun, 16 Oct 2005 02:29:30 +0000 (+0000) Subject: * Also suppress the perfached notice on listoutput X-Git-Tag: 1.6.0~1408 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=b417c0f9008980b36b795333da82ad91fd7eb6f4;p=lhc%2Fweb%2Fwiklou.git * Also suppress the perfached notice on listoutput --- diff --git a/includes/QueryPage.php b/includes/QueryPage.php index 54a32b9d6b..60bbd57ff4 100644 --- a/includes/QueryPage.php +++ b/includes/QueryPage.php @@ -263,7 +263,8 @@ class QueryPage { $sql = "SELECT qc_type as type, qc_namespace as namespace,qc_title as title, qc_value as value FROM $querycache WHERE qc_type='$type'"; - $wgOut->addWikiText( wfMsg( 'perfcached' ) ); + if ( ! $this->listoutput ) + $wgOut->addWikiText( wfMsg( 'perfcached' ) ); } $sql .= $this->getOrder();